Skip to main content

Pine

Learn how to set up and configure Pine.

Server

Server is the core component of Pine. Here, we define what the server is made of and what it does.

type Server struct {
mutex sync.Mutex
server *http.Server
onShutdown []func()
errorLog *log.Logger
config Config
stack [][]*Route
middleware []Middleware
}

Properties

These are some of the internal properties of the server.

PropertyDescription
mutexMutex to protect the server from concurrent access during set up
serverThe HTTP server instance
onShutdownA slice of functions to be executed when the server is shut down
errorLogThe error log instance
configThe configuration of the server
stackThe routing stack
middlewareThe middleware stack

Methods

MethodDescription
StartStarts the server
ServeHTTPHandles the HTTP request
ShutdownShuts down the server
UseAdds a middleware to the middleware stack
GetAdds a GET route to the routing stack
PostAdds a POST route to the routing stack
PutAdds a PUT route to the routing stack
DeleteAdds a DELETE route to the routing stack
OptionsAdds an OPTIONS route to the routing stack
AddRouteAdds a route to the routing stack

You can read more in depth about the methods in the Advanced Guide.

Start a new server

Use the New function to create a new server instance.

func New(config ...Config) *Server

Config

The Config struct is used to configure the server. You can pass your own configuration to the New function.

app := pine.New(pine.Config{
BodyLimit: 10 * 1024 * 1024,
RequestMethods: []string{"GET", "POST", "PUT"},
TLSConfig: pine.TLSConfig{
ServeTLS: true,
CertFile: `path/to/cert.pem`,
KeyFile: `path/to/key.pem`,
},
})

Config Properties

PropertyTypeDescriptionDefault
BodyLimitint64Defines the body limit for a request body. Setting it to -1 will decline any body size5 * 1024 * 1024
ReadTimeouttime.DurationDefines the read timeout for a request. It is reset after the request handler has returned.5 seconds
WriteTimeouttime.DurationDefines the maximum duration before timing out write of the response. It is reset after the response handler has returned.5 seconds
DisableKeepAliveboolWhen set to true, disables keep-alive connections.false
JSONEncoderfunc(v interface) ([]byte, error)Defines the JSON encoder function.json.Marshal
JSONDecoderfunc(data []byte, v interface) errorDefines the JSON decoder function.json.Unmarshal
RequestMethods[]stringDefines the request methods that are allowed.DefaultMethods
TLSConfigTLSConfigDefines the TLS configuration for the server.defaultTLSConfig

Default config

Here is what the default config looks like:

cfg := Config{
BodyLimit: DefaultBodyLimit,
ReadTimeout: 5 * time.Second,
WriteTimeout: 5 * time.Second,
DisableKeepAlive: false,
JSONEncoder: json.Marshal,
JSONDecoder: json.Unmarshal,
RequestMethods: DefaultMethods,
TLSConfig: defaultTLSConfig,
}

Default methods

var DefaultMethods = []string{
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD",
"OPTIONS",
"USE",
}

Default TLS configuration

var defaultTLSConfig = TLSConfig{
ServeTLS: false,
CertFile: "",
KeyFile: "",
}

Start

You need to specify the port on which the server will listen. If you pass an empty string, the server will listen on port :80 which is the default port for HTTP.

app.Start(":3000")

You may also choose to call the Start method in a log.Fatal call. This ensures any critical errors during startup or in the server's runtime are logged before exiting.

log.Fatal(app.Start(":3000"))
Start tip

Remember to add a ":" colon to the port number.